home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SELF32._M_ < prev    next >
Text File  |  1997-05-22  |  955b  |  38 lines

  1. #
  2. # Microsoft makefile for SELFTEST [Win32]
  3. # Requires WSC32.LIB & WSC32.DLL
  4. #
  5. # To use: "nmake self32._m_"
  6. #
  7.  
  8. CCFLAGS = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
  9.  
  10. selftest.exe: selftest.res selftest.obj selftest.def wsc32.lib \
  11.             about.obj line.obj paint.obj sioerror.obj \
  12.             menu.obj runtest.obj
  13.     link selftest paint line about menu runtest sioerror wsc32.lib kernel32.lib user32.lib gdi32.lib selftest.res
  14.  
  15. selftest.res: selftest.rc
  16.     rc -dWIN32 selftest.rc
  17.  
  18. about.obj: about.c about.h
  19.    cl $(CCFLAGS)  about.c
  20.  
  21. selftest.obj: selftest.c selftest.h wsc.h
  22.    cl $(CCFLAGS)  selftest.c
  23.  
  24. sioerror.obj: sioerror.c sioerror.h wsc.h
  25.    cl $(CCFLAGS)  sioerror.c
  26.  
  27. paint.obj: paint.c paint.h
  28.    cl $(CCFLAGS)  paint.c
  29.  
  30. line.obj: line.c line.h wsc.h
  31.    cl $(CCFLAGS)  line.c
  32.  
  33. menu.obj: menu.c menu.h wsc.h
  34.    cl $(CCFLAGS)  menu.c
  35.  
  36. runtest.obj: runtest.c runtest.h wsc.h
  37.    cl $(CCFLAGS)  runtest.c
  38.